From 45e2bb215f82be3da84a506c4a084587f4423055 Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Thu, 8 Mar 2007 22:33:47 +0000 Subject: [PATCH] Fix duplicate consts around xc_error declarations. Signed-off-by: Ewan Mellor --- tools/libxc/xc_private.c | 2 +- tools/libxc/xenctrl.h | 6 +++--- tools/python/xen/lowlevel/xc/xc.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/libxc/xc_private.c b/tools/libxc/xc_private.c index 77321c458b..3816b0a83b 100644 --- a/tools/libxc/xc_private.c +++ b/tools/libxc/xc_private.c @@ -23,7 +23,7 @@ void xc_default_error_handler(const xc_error const *err) fprintf(stderr, "ERROR %s: %s\n", desc, err->message); } -const xc_error const *xc_get_last_error(void) +const xc_error *xc_get_last_error(void) { return &last_error; } diff --git a/tools/libxc/xenctrl.h b/tools/libxc/xenctrl.h index 199750de73..96ba314503 100644 --- a/tools/libxc/xenctrl.h +++ b/tools/libxc/xenctrl.h @@ -770,19 +770,19 @@ typedef struct { * data pointed to are only valid until the next call to * libxc. */ -const xc_error const *xc_get_last_error(void); +const xc_error *xc_get_last_error(void); /* * Clear the last error */ void xc_clear_last_error(void); -typedef void (*xc_error_handler)(const xc_error const* err); +typedef void (*xc_error_handler)(const xc_error * const err); /* * The default error handler which prints to stderr */ -void xc_default_error_handler(const xc_error const* err); +void xc_default_error_handler(const xc_error * const err); /* * Convert an error code into a text description diff --git a/tools/python/xen/lowlevel/xc/xc.c b/tools/python/xen/lowlevel/xc/xc.c index b3dbb20ed7..7da0288cbd 100644 --- a/tools/python/xen/lowlevel/xc/xc.c +++ b/tools/python/xen/lowlevel/xc/xc.c @@ -47,7 +47,7 @@ static PyObject *dom_op(XcObject *self, PyObject *args, static PyObject *pyxc_error_to_exception(void) { PyObject *pyerr; - const xc_error const *err = xc_get_last_error(); + const xc_error *err = xc_get_last_error(); const char *desc = xc_error_code_to_desc(err->code); if (err->code == XC_ERROR_NONE) -- 2.30.2